places view: Use names for cursors
authorMatthias Clasen <mclasen@redhat.com>
Sun, 6 Dec 2015 00:18:27 +0000 (19:18 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 6 Dec 2015 00:18:27 +0000 (19:18 -0500)
Use the standard name for the busy+interactive cursor.

gtk/gtkplacesview.c

index ecb6c3b31112ba5e95e32828185ed79ba7281a89..011334b8034f3cd3e28236c480bb9fbe2f54f95d 100644 (file)
@@ -330,11 +330,7 @@ set_busy_cursor (GtkPlacesView *view,
   display = gtk_widget_get_display (widget);
 
   if (busy)
-    {
-      cursor = gdk_cursor_new_from_name (display, "left_ptr_watch");
-      if (cursor == NULL)
-        cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
-    }
+    cursor = gdk_cursor_new_from_name (display, "progress");
   else
     cursor = NULL;